.h-player-control {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
    position: relative;

    .h-player-control-datepicker {
        width: 170px;
        margin-left: 16px;
    }

    .h-player-control-datepicker-mobile {
        width: 135px;
        margin-left: 16px;
        min-height: 22px;
        border-width: 1px;
        border-style: solid;
        border-color: #d9d9d9;
        padding: 0px 7px 0px;
        display: inline-flex;
        border-radius: 6px;

        .h-player-control-datepicker-mobile-icon {
            display: flex;
            flex: none;
            align-self: center;
            margin-inline-start: 4px;
            color: rgba(0, 0, 0, 0.25);
            line-height: 1;
            pointer-events: none;
            transition: opacity 0.2s, color 0.2s;
        }

        .h-player-control-datepicker-mobile-text {
            position: relative;
            display: inline-block;
            width: 100%;
            color: inherit;
            font-size: 14px;
            line-height: 1.5714285714285714;
            transition: all 0.2s;
            flex: auto;
            min-width: 1px;
            height: auto;
            padding: 0;
            background: transparent;
            border: 0;
            font-family: inherit;
            white-space: nowrap;
        }
    }

    .h-player-control-control {
        flex-shrink: 0;
        width: 60px;

        .h-player-control-btn {
            width: 30px;
            height: 30px;
            background: #C5DFFE;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;

            img {
                // margin: -2px 0 0 2px;
                width: 12px;
                height: 12px;
            }
        }
    }

    .h-player-control-time {
        width: calc(100% - 60px);
        height: 100%;
        position: relative;

        .h-player-control-time-pop {
            width: 60px;
            height: 70px;
            position: absolute;
            margin-left: -30px;
            bottom: 0;
            text-align: center;
            z-index: 4;
            cursor: grab;

            .h-player-control-time-pop-line {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50%;
                height: calc(100% - 25px);
                border-right: 2px solid red;
                box-sizing: border-box;
            }

            span {
                display: inline-block;
                border-radius: 20px;
                background-color: rgba(23, 135, 251, 1);
                color: #FFFFFF;
                padding: 0 5px;
            }
        }

        .h-player-control-time-box {
            width: 100%;
            height: 100%;
            position: relative;
            // text-align: center;
            overflow: hidden;
            top: -30px;
            height: calc(100% + 30px);

            flex-shrink: 0;
            // cursor: grab;
            user-select: none;

            border-radius: 0 40px 40px 0;
            border-radius: 0 0px 0px 0;

            .h-player-control-time-scroll {
                height: 100%;
                // cursor: grab;
                user-select: none;
                display: inline-block;
                position: relative;
                white-space: nowrap;
                margin: 0 30px;
                height: 40px;
                top: 30px;

                .h-player-control-time-scale-pre {
                    border-left: 1px solid #A2B3C8;
                }

                .h-player-control-time-scale-next {
                    border-right: 1px solid #A2B3C8;
                }

                .h-player-control-time-scale {
                    height: 10px;
                    border-bottom: 1px solid #A2B3C8;
                    position: relative;
                    margin-top: 16px;
                    z-index: 3;
                    box-sizing: border-box;
                    display: inline-block;

                    div {
                        width: 1px;
                        height: 5px;
                        background-color: #A2B3C8;
                    }

                    .h-player-control-time-scale-next-text {
                        position: absolute;
                        bottom: -23px;
                        right: -6px;
                    }
                }

                .h-player-control-time-scale-pre-hour {
                    height: 14px;
                    margin-top: 12px;
                    position: absolute;
                    top: 0px;
                    border-left: 1px solid #A2B3C8;
                    z-index: 3;
                    box-sizing: border-box;

                    .h-player-control-time-scale-text {
                        position: absolute;
                        left: -10px;
                        bottom: -18px;
                        border: none;
                        background: none;
                        width: 20px;
                        text-align: center;
                    }
                }

                .h-player-control-time-scale-next-hour {
                    height: 14px;
                    margin-top: 12px;
                    position: absolute;
                    top: 0px;
                    border-right: 1px solid #A2B3C8;
                    z-index: 3;
                    box-sizing: border-box;

                    .h-player-control-time-scale-text {
                        position: absolute;
                        left: -10px;
                        bottom: -18px;
                        border: none;
                        background: none;
                        width: 20px;
                        text-align: center;
                    }
                }

                .h-player-control-time-scale-current {
                    height: 14px;
                    margin-top: 12px;
                    position: absolute;
                    top: 0px;
                    border-left: 1px solid red;
                    z-index: 3;
                    box-sizing: border-box;
                }

                .h-player-control-time-scale-end-text {
                    position: absolute;
                    bottom: -2px;
                    right: -8px;
                }
            }

            .h-player-control-time-pre-background {
                position: absolute;
                left: 0;
                top: 0;
                width: 50%;
                height: 100%;
                z-index: 2;
                border-top: 3px solid #FFFFFF;
                background: #FFFFFF;
                text-align: center;
                height: 40px;

                font-weight: 600;
                font-size: 30px;
                color: #C5DFFE;
                font-style: normal;
                text-transform: none;
                line-height: 30px;
                letter-spacing: 10px;
            }

            .h-player-control-time-next-background {
                position: absolute;
                // padding-left: 50%;
                right: 0;
                top: 0;
                height: 100%;
                width: 50%;
                z-index: 1;
                border-top: 3px solid rgba(0, 244, 255, 1);
                background: linear-gradient(180deg, rgba(0, 244, 255, 0.2) 0%, rgba(38, 126, 130, 0) 100%);
                height: 40px;

                font-weight: 600;
                font-size: 30px;
                color: rgba(0, 152, 159, 0.4);
                font-style: normal;
                text-transform: none;
                line-height: 30px;
                letter-spacing: 10px;
                text-align: center;
            }
        }

    }
}